(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
authorMarkus Rost <rost@math.uni-bielefeld.de>
Sat, 21 Sep 2002 20:10:47 +0000 (20:10 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Sat, 21 Sep 2002 20:10:47 +0000 (20:10 +0000)
lisp/mail/mailabbrev.el

index 64ca66ad4521b9bcc131a58c2d22795011ac93d2..3412a791f77575cc9ea699c4cc323d3d005e62a3 100644 (file)
@@ -420,6 +420,11 @@ of a mail alias.  The value is set up, buffer-local, when first needed.")
                       (set-char-table-range tab key w))))
        tab)
       (modify-syntax-entry ?@ "w" tab)
+      (modify-syntax-entry ?% "w" tab)
+      (modify-syntax-entry ?! "w" tab)
+      (modify-syntax-entry ?. "w" tab)
+      (modify-syntax-entry ?_ "w" tab)
+      (modify-syntax-entry ?- "w" tab)
       (setq mail-abbrev-syntax-table tab))))
 
 (defun mail-abbrev-in-expansion-header-p ()